home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-11 | 508 b | 38 lines |
- #
- # QOS Makefile for DJGPP.
- #
-
- CFLAGS= -O -c -DMSDOS
-
- all: helpcall.exe ~\help\example.hlp
-
- .c.o:
- gcc $(CFLAGS) $<
-
- O = helpcall.o
-
- L = -lsys -lc -lm
-
- helpcall.exe : makefile.tag $(O)
- gcc -o helpcall $(O) $(L)
- strip helpcall
- coff2exe helpcall
- del helpcall
-
- makefile.tag:
- del *.tag
- del *.o
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >makefile.tag
-
- ~\help\example.hlp:
- cd .\example
- helplib @example.rsp
- copy example.hlp ~\help\.
- del example.hlp
- cd ..
-